home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntinc25
/
file.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-15
|
375b
|
21 lines
#ifndef _FILE_H
#define _FILE_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __MINT__
/* lockf() comands */
#define LOCK_SH 1 /* shared lock */
#define LOCK_EX 2 /* exclusive lock */
#define LOCK_NB 4 /* non-blocking */
#define LOCK_UN 8 /* unlock */
__EXTERN int flock __PROTO((int, int));
#endif
#include <fcntl.h>
#endif /* _FILE_H */